2.6.1 version bump
authorSteven G. Johnson <stevenj@alum.mit.edu>
Tue, 15 Dec 2020 20:29:32 +0000 (15:29 -0500)
committerSteven G. Johnson <stevenj@alum.mit.edu>
Tue, 15 Dec 2020 20:29:32 +0000 (15:29 -0500)
CMakeLists.txt
Makefile
utf8proc.h

index 59ce0f432dbb7d9d56d3eaa35aab91e6cdf8aa88..ea6b80e171908e9c7ca6088d06b91e47e203ff3f 100644 (file)
@@ -11,7 +11,7 @@ project (utf8proc C)
 # Be sure to also update these in Makefile and MANIFEST!
 set(SO_MAJOR 2)
 set(SO_MINOR 4)
-set(SO_PATCH 0)
+set(SO_PATCH 1)
 
 option(UTF8PROC_INSTALL "Enable installation of utf8proc" On)
 option(UTF8PROC_ENABLE_TESTING "Enable testing of utf8proc" Off)
index 3d4c2fb58cf90a35bc9b9e9ac3ef9fbebe212cf8..fa1c6b09f38ae9dae6cb887b658cd77146740fa0 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -24,7 +24,7 @@ SOFLAG = -Wl,-soname
 # Be sure to also update these ABI versions in MANIFEST and CMakeLists.txt!
 MAJOR=2
 MINOR=4
-PATCH=0
+PATCH=1
 
 OS := $(shell uname)
 ifeq ($(OS),Darwin) # MacOS X
index bfc62e4bf70695928e4699b8d93a73e6918ae122..2e8a7ae74cb8e9591bdc123e7f7bdfbd4c13e5c3 100644 (file)
@@ -73,7 +73,7 @@
 /** The MINOR version number (increased when new functionality is added in a backwards-compatible manner). */
 #define UTF8PROC_VERSION_MINOR 6
 /** The PATCH version (increased for fixes that do not change the API). */
-#define UTF8PROC_VERSION_PATCH 0
+#define UTF8PROC_VERSION_PATCH 1
 /** @} */
 
 #include <stdlib.h>